Python intro#

gdsfactory is written in python and requires some basic knowledge of python.

If you are new to python you can find many resources online

This notebook is for you to experiment with some common python patterns in gdsfactory

Classes#

Gdsfactory has already some pre-defined classes for you. The only class you may need to define is a Layermap. Which can be easily defined as a dataclass

All the other classes (Component, ComponentReference, Port …) are already available in gf.types

Classes are good for keeping state, which means that they store some information inside them (polygons, ports, references …)

[1]:
import gdsfactory as gf

gf.CONF.plotter = "holoviews"

c = gf.Component(name="my_fist_class")
c.add_polygon([(-8, 6, 7, 9), (-6, 8, 17, 5)], layer=(1, 0))
c
2022-11-27 23:46:04.041 | INFO     | gdsfactory.config:<module>:46 - Load '/home/runner/work/gdsfactory/gdsfactory/gdsfactory' 6.2.6
../_images/notebooks__0_python_1_1.png
[1]:
my_fist_class: uid 621154e1, ports [], references [], 1 polygons
[2]:
c.ploth()
[2]:

Functions#

Functions have clear inputs and outputs, they usually accept some parameters (strings, floats, ints …) and return other parameters

[3]:
def double(x):
    return 2 * x


x = 1.5
y = double(x)
print(y)
3.0

It’s also nice to add type annotations to your functions to clearly define what are the input/output types (string, int, float …)

[4]:
def double(x: float) -> float:
    return 2 * x

Factories#

A factory is a function that returns an object. In gdsfactory many functions return a Component object

[5]:
def bend(radius: float = 5) -> gf.types.Component:
    return gf.components.bend_euler(radius=radius)


component = bend(radius=10)

print(component)
component.plot()
bend_euler_radius10: uid cfb3c14a, ports ['o1', 'o2'], references [], 2 polygons
[5]:

Decorators#

gdsfactory has many functions, and we want to do some common operations for the ones that return a Component:

  • give a unique name (dependent on the input parameters) to a Component

  • validate input arguments based on type annotations

  • cache the Component that the function returns for speed and reuse cells.

For that you will see a @cell decorator on many component functions.

The validation functionality comes from the pydantic package and is available to you automatically when using the @cell decorator

[6]:
from pydantic import validate_arguments


@validate_arguments
def double(x: float) -> float:
    return 2 * x


x = 1.5
y = double(x)
print(y)
3.0

The validator decorator is equivalent to running

[7]:
def double(x: float) -> float:
    return 2 * x


double_with_validator = validate_arguments(double)
x = 1.5
y = double_with_validator(x)
print(y)
3.0

The cell decorator also leverages that validate arguments. So you should add type annotations to your component factories.

Lets try to create an error x and you will get a clear message the the function double does not work with strings

y = double('not_valid_number')

will raise a ValidationError

ValidationError: 0 validation error for Double
x
  value is not a valid float (type=type_error.float)

It will also cast the input type based on the type annotation. So if you pass an int it will convert it to float

[8]:
x = 1
y = double_with_validator(x)
print(y, type(x), type(y))
2.0 <class 'int'> <class 'float'>

List comprehensions#

You will also see some list comprehensions, which are common in python.

For example, you can write many loops in one line

[9]:
y = []
for x in range(3):
    y.append(double(x))

print(y)
[0, 2, 4]
[10]:
y = [double(x) for x in range(3)]  # much shorter and easier to read
print(y)
[0, 2, 4]

Functional programming#

Functional programming follows linux philosophy:

  • Write functions that do one thing and do it well.

  • Write functions to work together.

  • Write functions with clear inputs and outputs

partial#

Partial is an easy way to modify the default arguments of a function. This is useful in gdsfactory because we define Pcells using functions.

gdsfactory.partial comes from the module functools.partial, which is available in the standard python library.

The following two functions are equivalent in functionality.

Notice how the second one is shorter, more readable and easier to maintain thanks to gf.partial

[11]:
def ring_sc(gap=0.3, **kwargs):
    return gf.components.ring_single(gap=gap, **kwargs)


ring_sc = gf.partial(gf.components.ring_single, gap=0.3)

As you customize more parameters, it’s more obvious that the second one is easier to maintain

[12]:
def ring_sc(gap=0.3, radius=10, **kwargs):
    return gf.components.ring_single(gap=gap, radius=radius, **kwargs)


ring_sc = gf.partial(gf.components.ring_single, gap=0.3, radius=10)

compose#

gf.compose combines two functions into one.

[13]:
ring_sc = gf.partial(gf.components.ring_single, radius=10)
add_gratings = gf.routing.add_fiber_array

ring_sc_gc = gf.compose(add_gratings, ring_sc)
ring_sc_gc5 = ring_sc_gc(radius=5)
ring_sc_gc5.plot()
[13]:
[14]:
ring_sc_gc20 = ring_sc_gc(radius=20)
ring_sc_gc20.plot()
[14]:

This is equivalent and more readable than writing

[15]:
ring_sc_gc5 = add_gratings(ring_sc(radius=5))
ring_sc_gc5.plot()
[15]:
[16]:
ring_sc_gc20 = add_gratings(ring_sc(radius=20))
ring_sc_gc20.plot()
[16]:
[17]:
print(ring_sc_gc5)
ring_single_radius5_add_ed2f50b0: uid cc199566, ports ['vertical_te_00', 'vertical_te_01', 'vertical_te_10', 'vertical_te_20'], references ['bend_euler_1', 'straight_1', 'straight_2', 'bend_euler_2', 'straight_3', 'straight_4', 'bend_euler_3', 'bend_euler_4', 'bend_euler_5', 'bend_euler_6', 'bend_euler_7', 'bend_euler_8', 'straight_5', 'straight_6', 'straight_7', 'straight_8', 'straight_9', 'grating_coupler_elliptical_trenches_1', 'grating_coupler_elliptical_trenches_2', 'grating_coupler_elliptical_trenches_3', 'grating_coupler_elliptical_trenches_4', 'ring_single_1'], 0 polygons

Ipython#

This jupyter notebook uses an Interactive Python Terminal (Ipython). So you can interact with the code.

For more details on Jupyter Notebooks, you can visit the Jupyter website.

The most common trick that you will see is that we use ? to see the documentation of a function or help(function)

[18]:
gf.components.coupler?

To see the source code of a function you can use ??

[19]:
gf.components.coupler??

To see which variables you have defined in the workspace you can type whos

To time the execution time of a cell, you can add a %time on top of the cell

[20]:
%time


def hi():
    print("hi")


hi()
CPU times: user 3 µs, sys: 0 ns, total: 3 µs
Wall time: 5.25 µs
hi

For more Ipython tricks you can find many resources available online